# Servlets.props file is used to sepcify servlets' mappings, intial arguments, # and preload flags. # # General format for a servlet mapping is: # # .mapping= # .code= # .initArgs= # .preload=<"true"|"false"> # # Only the .mapping line is required; the rest are optional. # If the .code line is omitted, will be used for . # If the .initArgs line is omitted, the servlet has no initial arguments. # If the .preload line is omitted, it defaults to false. # # Additional mappings for the same servlet name can also be configured: # # .mapping= # .name= # # .mapping= # .name= # # .mapping= # .name= # # Furthermore, multiple instances of the same servlet can be loaded with # different initial arguments (and different mappings, of course): # # .mapping= # .code= # .initArgs= instance> # # .mapping= # .code= # .initArgs= instance> # # Notice that the .code and .code refer to the same class. # # See documentation for full details. # # # The sample servlets.props file is setup to be backwards compatible # with the previous "/servlet/FooServlet" mappings. ParkingInitServlet.mapping=/servlet/initServlet ParkingInitServlet.code=superviseur.net.servlets.ParkingInitServlet ParkingInitServlet.initArgs=PORT_SERVER_BORNES=6080,PORT_SERVER_GARDIENS=7080,PORT_SERVER_AFFICHEURS=4080,PARAMS_BORNES=root/data/bornes,PARAMS_EVENEMENTS=root/data/evenements,PARAMS_PARK=root/data/params.props,PARAMS_UTILISATEURS=root/data/utilisateurs ParkingInitServlet.preload=true TestBorneServlet.mapping=/servlet/TestBorneServlet TestBorneServlet.code=superviseur.net.servlets.TestBorneServlet TestBorneServlet.initArgs=URI_RPC_TEST=appletrpc LoginHandlerServlet.mapping=/servlet/LoginHandlerServlet LoginHandlerServlet.code=superviseur.net.servlets.LoginHandlerServlet LoginHandlerServlet.name=LoginHandlerServlet AppletRpcServlet.mapping=/servlet/appletrpc AppletRpcServlet.code=superviseur.net.servlets.AppletRpcServlet #AppletRpcServlet.preload=true PasswordsServlet.mapping=/servlet/passwords PasswordsServlet.code=superviseur.net.servlets.PasswordsServlet PasswordsServlet.initArgs=PATH_PASSWORDS=root/data/passwords PasswordsServlet.preload=true ManageBornesServlet.mapping=/servlet/bornes ManageBornesServlet.code=superviseur.net.servlets.ManageBornesServlet EvenementsServlet.mapping=/servlet/evenements EvenementsServlet.code=superviseur.net.servlets.EvenementsServlet UtilisateursServlet.mapping=/servlet/utilisateurs UtilisateursServlet.code=superviseur.net.servlets.UtilisateursServlet ParamsParkingServlet.mapping=/servlet/params ParamsParkingServlet.code=superviseur.net.servlets.ParamsParkingServlet BorneAppletServlet.mapping=/servlet/borneapplet BorneAppletServlet.code=superviseur.net.servlets.BorneAppletServlet GardienAppletServlet.mapping=/servlet/gardienapplet GardienAppletServlet.code=superviseur.net.servlets.GardienAppletServlet CapServlet.mapping=/servlet/capapplet CapServlet.code=superviseur.net.servlets.CapServlet #Option PanneauAffichage #AfficheurAppletServlet.mapping=/servlet/afficheurapplet #AfficheurAppletServlet.code=superviseur.net.servlets.AfficheurAppletServlet